home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 83
/
(Vol 83) My Disc.iso
/
Games
/
blobz.swf
/
scripts
/
frame_362
/
DoAction.as
Wrap
Text File
|
2008-08-08
|
550b
|
33 lines
continuebtn.onRelease = function()
{
if(bluePoints > 1)
{
gotoAndStop(410);
}
else if(round == "round1")
{
round = "round2";
gotoAndPlay(196);
}
else if(round == "round2")
{
round = "finalround";
gotoAndPlay(196);
}
else
{
round = "round1";
gotoAndStop(7);
}
};
continuebtn.onKeyDown = function()
{
if(Key.getCode() == 32)
{
Key.removeListener(continuebtn);
this.onRelease();
}
};
Key.addListener(continuebtn);
stop();